Micron Document
NexusPi Git Node

Commit ed36e792f258c8c1fd3ed59ab879c4bcc97eb73a


Parents : 42f0eec
Author : James L <jrl290@gmail.com>
Date : 2026-03-05T23:38:39-05:00

Default display blanking to 10 minutes (enabled)

Changes

2 files changed, 2 insertions(+), 2 deletions(-)

M Config.h +1 -1
M Display.h +1 -1

Diff

diff --git a/Config.h b/Config.h
index 61a3562..ccf447e 100755
--- a/Config.h
+++ b/Config.h
@@ -231,7 +231,7 @@
uint8_t display_intensity = 0xFF;
uint8_t display_addr = 0xFF;
volatile bool display_updating = false;
- bool display_blanking_enabled = false;
+ bool display_blanking_enabled = true;
bool display_diagnostics = true;
bool device_init_done = false;
bool eeprom_ok = false;

diff --git a/Display.h b/Display.h
index 0fac47a..729876e 100755
--- a/Display.h
+++ b/Display.h
@@ -164,7 +164,7 @@ float epd_update_fps = 0.5;
#define DISP_MODE_LANDSCAPE 0x01
#define DISP_MODE_PORTRAIT 0x02
#define DISP_PIN_SIZE 6
-#define DISPLAY_BLANKING_TIMEOUT 1*60*1000
+#define DISPLAY_BLANKING_TIMEOUT 10*60*1000
uint8_t disp_mode = DISP_MODE_UNKNOWN;
uint8_t disp_ext_fb = false;
unsigned char fb[512];

Served by rngit 1.4.2 - Generated in 0.02s